คำตอบที่ได้รับเลือกจากเจ้าของกระทู้
ความคิดเห็นที่ 6
C กับ C++ มันไม่เหมือนกัน ลองดูนะครับ
C
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้
C++
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้
C
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้
#include<stdio.h>
#include<string.h>
int main() {
char user[20];
char pass[20];
printf("username ");
scanf("%s",user);
printf("Password ");
scanf("%s",pass);
if (strcmp(user,"user")==0 && strcmp(pass,"pass")==0) {
printf("hello\r\n");
} else {
printf("Wrong Password\r\n");
}
}
#include<string.h>
int main() {
char user[20];
char pass[20];
printf("username ");
scanf("%s",user);
printf("Password ");
scanf("%s",pass);
if (strcmp(user,"user")==0 && strcmp(pass,"pass")==0) {
printf("hello\r\n");
} else {
printf("Wrong Password\r\n");
}
}
C++
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้
#include<iostream>
using namespace std;
int main() {
string user;
string pass;
cout << "username ";
cin >> user;
cout << "Password ";
cin >> pass;
if (user=="user" && pass=="pass") {
cout << "hello" << endl;
} else {
cout << "Wrong Password" << endl;
}
}
using namespace std;
int main() {
string user;
string pass;
cout << "username ";
cin >> user;
cout << "Password ";
cin >> pass;
if (user=="user" && pass=="pass") {
cout << "hello" << endl;
} else {
cout << "Wrong Password" << endl;
}
}
▼ กำลังโหลดข้อมูล... ▼
แสดงความคิดเห็น
คุณสามารถแสดงความคิดเห็นกับกระทู้นี้ได้ด้วยการเข้าสู่ระบบ
กระทู้ที่คุณอาจสนใจ
อ่านกระทู้อื่นที่พูดคุยเกี่ยวกับ
วิศวกรรมคอมพิวเตอร์
การพัฒนาซอฟต์แวร์
การออกแบบฐานข้อมูล
C++
C (ภาษาคอมพิวเตอร์)
อยากหาผู้ที่เก่งภาษา c+
#include<stdio.h>
#include<iostream>
using namespace std;
int main(){
char user;
int pass;
printf("username ");
scanf("%c",user);
printf("Password ");
scanf("%d",pass);
if(user=="user" && pass== "pass") {
printf("hello");
}
else{
printf("Wrong Password");
}
else
printf("Stop");
}
พอจะมีคนมั้ยฮ่ะ ถามด้วย=.= ด้านบนต้องการทำ code login แต่พอจะรันมันฟ้องมาว่า if ไม่เจอทำไงดีฮ่ะ=.= มีใครใจดีทิ้งเฟสบุคไว้ให้รบกวนถามบ่อยๆมั้ยฮ่ะ พอดี ตั้งกระทู้ใน pantip ได้แค่วันละครั้ง=.= เลยอยากหาคนสอนจริงๆ=.= ส่วนตัวไม่มีเงินเลย=.=
ตัวที่ใช้เขียน Dev c++