#include<iostream>
#include<cstdio>
using namespace std;
int main(){
cout<<sizeof(char)<<" "<<sizeof(short)<<" "<<sizeof(int)<<" "<<sizeof(long)<<" "<<sizeof(long long);
return 0;
}
#include<cstdio>
using namespace std;
int main(){
cout<<sizeof(char)<<" "<<sizeof(short)<<" "<<sizeof(int)<<" "<<sizeof(long)<<" "<<sizeof(long long);
return 0;
}
2023-07-31
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello World! In")
int main(int argc, char **argv)
{
printf("Hello World! In")
2023-07-12
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello World! In");
return 0;
}
int main(int argc, char **argv)
{
printf("Hello World! In");
return 0;
}
2023-07-12
int testPoint = 85;
if (testPoint>=90) { std::cout<<"成绩:优秀"<<std::endl;
}else if( 90 >testPoint >= 75){std::cout<<"成绩:良"<<std::endl;
}else if (75 > testPoint >= 60) {
std::cout<<"成绩:及格"<<std::endl;
}else if ( testPoint<60 ){
std::cout<<"成绩:不及格"<<std::endl;
}
if (testPoint>=90) { std::cout<<"成绩:优秀"<<std::endl;
}else if( 90 >testPoint >= 75){std::cout<<"成绩:良"<<std::endl;
}else if (75 > testPoint >= 60) {
std::cout<<"成绩:及格"<<std::endl;
}else if ( testPoint<60 ){
std::cout<<"成绩:不及格"<<std::endl;
}