求学长 老师指导

3 comments

  • @ 2024-11-29 18:48:35

    我要长脑子了

    • @ 2024-11-26 19:06:19
      #include<bits/stdc++.h>
      using namespace std;
      
      int main()
      {
      	int j = 0 , m = 0 , y; //津津的钱,妈妈的钱,津津的预算。 
      	for( int m = 1 ; m <= 12 ; m++ ) //循环 
      	{
      		cin >> y; //读入 
      		
      		j = j + 300 - y; //津津的钱=仅仅原来的钱+300-她的预算 
      		
      		if ( j >= 100 ) //循环,,,,如果津津手里的钱>=100 
      			m += j / 100; //就在妈妈那存100元 
      			j = j - ( j / 100 * 100 ); //津津的钱=原来的-在妈妈那存的*100 
      		
      		if ( j >= 0 && j < 100 ) continue; //如果 津津的钱大于等于0且津津的钱<100,,就结束执行 
      		
      		if ( j < 0 )  //如果津津的钱<0 
      		{
      			cout << "-" << m << endl; //输出。。。。。。。 
      			return 0;
      		}
      				
      	}
      	cout << j + ( 120 * m ) << endl; //输出仅仅最后得到的钱数 
      	
      	return 0; //归0 
      }
      
    • @ 2024-11-25 13:20:50

      #include <bits/stdc++.h> using namespace std;

      int main() { int total = 0, remain = 0; for (int i = 1; i <= 12; i ++ ) { int cur; cin >> cur; if (remain + 300 < cur) { total = -i; break; } remain += 300 - cur; total += remain / 100 * 120; remain %= 100; } if (total >= 0) total += remain; cout << total << endl; return 0; }

    • 1