不懂就问,哪里写错了?
#include <stdio.h>
int main()
{
int sale = 120;
int year = 1;
if(sale > 100)
{
if(year >= 2)
{
printf("%s\n","打工人の泪");
}
else
{
printf("%s\n","很遗憾,期望你再接再厉");
}
}
else
{
printf("%s\n","很遗憾,期望你再接再厉");
}
return 0;
}
#include <stdio.h>
int main()
{
int sale = 120;
int year = 1;
if(sale > 100)
{
if(year >= 2)
{
printf("%s\n","打工人の泪");
}
else
{
printf("%s\n","很遗憾,期望你再接再厉");
}
}
else
{
printf("%s\n","很遗憾,期望你再接再厉");
}
return 0;
}
2021-01-12
举报