#include<stdio.h>
#include<iostream>
#include<stdlib.h>
int main()
//int sum;
//sum = a + b;
//printf("%d\n", sum);
// /*return 0;*/
// /*std::cin.ignore(std::cin.rdbuf()->in_avail() + 1);*/
判断真假输出不同的数(简化版if语句)
//int a = 1;
//int b = 2;
//printf("%d\n", (a == b) ? "1" : "11");
/* system("pause");
return 0;*/
判断学生成绩是否及格
/*int score = 90;*/
//if (score > 60) //第一种常用方法
// printf("T");
//else
// printf("F");
//printf("%c\n", score>=60 ? 'T' : 'F'); //一行代码实现相同功能
system("pause");
return 0;
}
#include<iostream>
#include<stdlib.h>
int main()
{
//int sum;
//sum = a + b;
//printf("%d\n", sum);
// /*return 0;*/
// /*std::cin.ignore(std::cin.rdbuf()->in_avail() + 1);*/
判断真假输出不同的数(简化版if语句)
//int a = 1;
//int b = 2;
//printf("%d\n", (a == b) ? "1" : "11");
/* system("pause");
return 0;*/
判断学生成绩是否及格
/*int score = 90;*/
//if (score > 60) //第一种常用方法
// printf("T");
//else
// printf("F");
//printf("%c\n", score>=60 ? 'T' : 'F'); //一行代码实现相同功能
system("pause");
return 0;
}