This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
import org.testng.annotations.Test; | |
import io.restassured.RestAssured; | |
import io.restassured.response.Response; | |
import io.restassured.response.ResponseBody; | |
import io.restassured.specification.RequestSpecification; | |
public class GET_Token { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ExampleFive { | |
public static void main(String[] args) { | |
for(int x = 1; x <=100; x++ ) | |
System.out.println(x + " " + (100 - x)); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
public class Example6{ | |
public static void main(String[] args) { | |
int day=6; | |
switch (day) | |
{ | |
case 1: System.out.println("Monday");break; | |
case 2: System.out.println("Tuesday");break; | |
case 3: System.out.println("Wednesday");break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
public class Example6{ | |
public static void main(String[] args) { | |
int day=6; | |
switch (day) | |
{ | |
case 1: System.out.println("Monday");break; | |
case 2: System.out.println("Tuesday");break; | |
case 3: System.out.println("Wednesday");break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
public class Example6{ | |
public static void main(String[] args) { | |
int day=6; | |
switch (day) | |
{ | |
case 1: System.out.println("Monday");break; | |
case 2: System.out.println("Tuesday");break; | |
case 3: System.out.println("Wednesday");break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
public class Example6{ | |
public static void main(String[] args) { | |
int day=2; | |
switch (day) | |
{ | |
case 1: System.out.println("Monday");break; | |
case 2: System.out.println("Tuesday");break; | |
case 3: System.out.println("Wednesday");break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
import java.util.Scanner; | |
public class Example7 { | |
public static void main(String[] args) { | |
for (int i = 0; i <= 100; i++) { | |
if (i >= 54 && i <= 74) { | |
continue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ExampleFive { | |
public static void main(String[] args) { | |
for(int x = 1; x <=100; x++ ) | |
System.out.println(x + " " + (100 - x)); | |
} | |
} |